This example demonstrates that Flexx apps can be run interactively in the notebook.
In [1]:
%gui asyncio
from flexx import flx
flx.init_notebook()
In [2]:
from flexxamples.demos.twente import Twente
t = Twente(style='height:300px')
t
Out[2]:
In [3]:
from flexxamples.demos.splines import Splines
splines = Splines(style='height:300px')
splines
Out[3]:
In [ ]: